home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / QuickDraw3D 1.6 SDK / Mac SampleCode New for 1.6 / WorldRayPickSample / Headers / WRay_Memory.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-20  |  532 b   |  42 lines  |  [TEXT/CWIE]

  1. /*  
  2.  *    Txtr_Memory.h
  3.  *
  4.  *    QuickDraw 3D 1.6 Sample
  5.  *    Robert Dierkes
  6.  *
  7.  *     07/28/98    RDD        Created.
  8.  */
  9.  
  10. #ifndef _HTxtr_Memory
  11. #define _HTxtr_Memory
  12.  
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17.  
  18. unsigned char *Memory_Sys_New(
  19.     unsigned long    size);
  20.  
  21. unsigned char *Memory_App_New(
  22.     unsigned long    size);
  23.  
  24. void Memory_Dispose(
  25.     void            *memory);
  26.  
  27. void Memory_Copy(
  28.     void            *source,
  29.     void            *destination,
  30.     unsigned long    size);
  31.  
  32. TQ3Status Object_Dispose_NULL(
  33.     TQ3Object        *pObject);
  34.  
  35.  
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39.  
  40.  
  41. #endif /* _HTxtr_Memory */
  42.